home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / gdb / gdb_18s.zoo / stack.c < prev    next >
C/C++ Source or Header  |  1992-03-25  |  17KB  |  621 lines

  1. /* Print and select stack frames for GDB, the GNU debugger.
  2.    Copyright (C) 1986, 1987 Free Software Foundation, Inc.
  3.  
  4. GDB is distributed in the hope that it will be useful, but WITHOUT ANY
  5. WARRANTY.  No author or distributor accepts responsibility to anyone
  6. for the consequences of using it or for whether it serves any
  7. particular purpose or works at all, unless he says so in writing.
  8. Refer to the GDB General Public License for full details.
  9.  
  10. Everyone is granted permission to copy, modify and redistribute GDB,
  11. but only under the conditions described in the GDB General Public
  12. License.  A copy of this license is supposed to have been given to you
  13. along with GDB so you can know your rights and responsibilities.  It
  14. should be in a file named COPYING.  Among other things, the copyright
  15. notice and this notice must be preserved on all copies.
  16.  
  17. In other words, go ahead and share GDB, but don't try to stop
  18. anyone else from sharing it farther.  Help stamp out software hoarding!
  19. */
  20.  
  21. #include <stdio.h>
  22.  
  23. #include "defs.h"
  24. #include "param.h"
  25. #include "symtab.h"
  26. #include "frame.h"
  27.  
  28. /* Thie "selected" stack frame is used by default for local and arg access.
  29.    May be zero, for no selected frame.  */
  30.  
  31. FRAME selected_frame;
  32.  
  33. /* Level of the selected frame:
  34.    0 for innermost, 1 for its caller, ...
  35.    or -1 for frame specified by address with no defined level.  */
  36.  
  37. int selected_frame_level;
  38.  
  39. /* Nonzero means print the full filename and linenumber
  40.    when a frame is printed, and do so in a format programs can parse.  */
  41.  
  42. int frame_file_full_name = 0;
  43.  
  44. static void select_calling_frame ();
  45.  
  46. void print_frame_info ();
  47.  
  48. /* Print a stack frame briefly.  FRAME should be the frame address
  49.    and LEVEL should be its level in the stack (or -1 for level not defined).
  50.    This prints the level, the function executing, the arguments,
  51.    and the file name and line number.
  52.    If the pc is not at the beginning of the source line,
  53.    the actual pc is printed at the beginning.
  54.  
  55.    If SOURCE is 1, print the source line as well.
  56.    If SOURCE is -1, print ONLY the source line.  */
  57.  
  58. static void
  59. print_stack_frame (frame, level, source)
  60.      FRAME frame;
  61.      int level;
  62.      int source;
  63. {
  64.   struct frame_info fi;
  65.  
  66.   fi = get_frame_info (frame);
  67.  
  68.   print_frame_info (&fi, level, source, 1);
  69. }
  70.  
  71. void
  72. print_frame_info (fi, level, source, args)
  73.      struct frame_info *fi;
  74.      register int level;
  75.      int source;
  76.      int args;
  77. {
  78.   register FRAME frame = fi->frame;
  79.   struct symtab_and_line sal;
  80.   struct symbol *func;
  81.   register char *funname = 0;
  82.   int numargs;
  83.  
  84.   sal = find_pc_line (fi->pc, fi->next_frame);
  85.   func = get_frame_function (frame);
  86.   if (func)
  87.     funname = SYMBOL_NAME (func);
  88.   else
  89.     {
  90.       register int misc_index = find_pc_misc_function (fi->pc);
  91.       if (misc_index >= 0)
  92.     funname = misc_function_vector[misc_index].name;
  93.     }
  94.  
  95.   if (source >= 0 || !sal.symtab)
  96.     {
  97.       /* This avoids a bug in cc on the sun.  */
  98.       struct frame_info tem;
  99.       tem = *fi;
  100.  
  101.       if (level >= 0)
  102. printf_filtered ("#%-2d ", level);
  103.       if (fi->pc != sal.pc || !sal.symtab)
  104. printf_filtered ("0x%x in ", fi->pc);
  105.      printf_filtered ("%s (", funname ? funname : "??");
  106.       if (args)
  107.     {
  108.       FRAME_NUM_ARGS (numargs, tem);
  109.       print_frame_args (func, FRAME_ARGS_ADDRESS (tem), numargs, stdout);
  110.     }
  111.      printf_filtered (")");
  112.       if (sal.symtab)
  113. printf_filtered (" (%s line %d)", sal.symtab->filename, sal.line);
  114.      printf_filtered ("\n");
  115.     }
  116.  
  117.   if (source != 0 && sal.symtab)
  118.     {
  119.       int done = 0;
  120.       int mid_statement = source < 0 && fi->pc != sal.pc;
  121.       if (frame_file_full_name)
  122.     done = identify_source_line (sal.symtab, sal.line, mid_statement);
  123.       if (!done)
  124.     {
  125.       if (mid_statement)
  126.        printf_filtered ("0x%x\t", fi->pc);
  127.       print_source_lines (sal.symtab, sal.line, sal.line + 1);
  128.     }
  129.       current_source_line = max (sal.line - 5, 1);
  130.     }
  131.   if (source != 0)
  132.     set_default_breakpoint (1, fi->pc, sal.symtab, sal.line);
  133.  
  134.   fflush (stdout);
  135. }
  136.  
  137. /* Call here to print info on selected frame, after a trap.  */
  138.  
  139. void
  140. print_sel_frame (just_source)
  141.      int just_source;
  142. {
  143.   print_stack_frame (selected_frame, -1, just_source ? -1 : 1);
  144. }
  145.  
  146. /* Print info on the selected frame, including level number
  147.    but not source.  */
  148.  
  149. print_selected_frame ()
  150. {
  151.   print_stack_frame (selected_frame, selected_frame_level, 0);
  152. }
  153.  
  154. /* Print verbosely the selected frame or the frame at address ADDR.
  155.    This means absolutely all information in the frame is printed.  */
  156.  
  157. static void
  158. frame_info (addr_exp)
  159.      char *addr_exp;
  160. {
  161.   FRAME frame = addr_exp ? parse_and_eval_address (addr_exp) : selected_frame;
  162.   struct frame_info fi;
  163.   struct frame_saved_regs fsr;
  164.   struct symtab_and_line sal;
  165.   struct symbol *func;
  166.   FRAME calling_frame;
  167.   int i, count;
  168.   char *funname = 0;
  169.   int numargs;
  170.  
  171.   fi = get_frame_info (frame);
  172.   get_frame_saved_regs (&fi, &fsr);
  173.   sal = find_pc_line (fi.pc, fi.next_frame);
  174.   func = get_frame_function (frame);
  175.   if (func)
  176.     funname = SYMBOL_NAME (func);
  177.   else
  178.     {
  179.       register int misc_index = find_pc_misc_function (fi.pc);
  180.       if (misc_index >= 0)
  181.     funname = misc_function_vector[misc_index].name;
  182.     }
  183.   calling_frame = get_prev_frame (frame);
  184.  
  185.   if (!addr_exp && selected_frame_level >= 0)
  186.    printf_filtered ("Stack level %d, frame at 0x%x:\n pc = 0x%x",
  187.         selected_frame_level, frame, fi.pc);
  188.   else
  189.    printf_filtered ("Stack frame at 0x%x:\n pc = 0x%x",
  190.         frame, fi.pc);
  191.  
  192.   if (funname)
  193.    printf_filtered (" in %s", funname);
  194.   if (sal.symtab)
  195.    printf_filtered (" (%s line %d)", sal.symtab->filename, sal.line);
  196.  printf_filtered ("; saved pc 0x%x\n", FRAME_SAVED_PC (frame));
  197.   if (calling_frame)
  198.    printf_filtered (" called by frame at 0x%x", calling_frame);
  199.   if (fi.next_frame && calling_frame)
  200.    printf_filtered (",");
  201.   if (fi.next_frame)
  202.    printf_filtered (" caller of frame at 0x%x", fi.next_frame);
  203.   if (fi.next_frame || calling_frame)
  204.    printf_filtered ("\n");
  205.  printf_filtered (" Arglist at 0x%x,", FRAME_ARGS_ADDRESS (fi));
  206.   FRAME_NUM_ARGS (i, fi);
  207.   if (i < 0)
  208.    printf_filtered (" args: ");
  209.   else if (i == 0)
  210.    printf_filtered (" no args.");
  211.   else if (i == 1)
  212.    printf_filtered (" 1 arg: ");
  213.   else
  214.    printf_filtered (" %d args: ", i);
  215.  
  216.   FRAME_NUM_ARGS (numargs, fi);
  217.   print_frame_args (func, FRAME_ARGS_ADDRESS (fi), numargs, stdout);
  218.  printf_filtered ("\n");
  219.   count = 0;
  220.   for (i = 0; i < NUM_REGS; i++)
  221.     if (fsr.regs[i])
  222.       {
  223.     if (count % 4 != 0)
  224.      printf_filtered (", ");
  225.     else
  226.       {
  227.         if (count == 0)
  228.          printf_filtered (" Saved registers:");
  229.        printf_filtered ("\n  ");
  230.       }
  231. printf_filtered ("%s at 0x%x", reg_names[i], fsr.regs[i]);
  232.     count++;
  233.       }
  234.   if (count)
  235.    printf_filtered ("\n");
  236. }
  237.  
  238. /* Print briefly all stack frames or just the innermost COUNT frames.  */
  239.  
  240. static void
  241. backtrace_command (count_exp)
  242.      char *count_exp;
  243. {
  244.   struct frame_info fi;
  245.   register int count;
  246.   register FRAME frame;
  247.   register int i;
  248.  
  249.   if (count_exp)
  250.     count = parse_and_eval_address (count_exp);
  251.   else
  252.     count = -1;
  253.  
  254.   for (i = 0, frame = get_current_frame (), fi = get_frame_info (frame);
  255.        frame && count--;
  256.        i++, fi = get_prev_frame_info (fi.frame), frame = fi.frame)
  257.     {
  258.       QUIT;
  259.       print_frame_info (&fi, i, 0, 1);
  260.     }
  261. }
  262.  
  263. /* Print the local variables of a block B active in FRAME.  */
  264.  
  265. static void
  266. print_block_frame_locals (b, frame, stream)
  267.      struct block *b;
  268.      register FRAME frame;
  269.      register FILE *stream;
  270. {
  271.   int nsyms;
  272.   register int i;
  273.   register struct symbol *sym;
  274.  
  275.   nsyms = BLOCK_NSYMS (b);
  276.  
  277.   for (i = 0; i < nsyms; i++)
  278.     {
  279.       sym = BLOCK_SYM (b, i);
  280.       if (SYMBOL_CLASS (sym) == LOC_LOCAL
  281.       || SYMBOL_CLASS (sym) == LOC_REGISTER
  282.       || SYMBOL_CLASS (sym) == LOC_STATIC)
  283.     {
  284.       fprintf_filtered (stream, "%s = ", SYMBOL_NAME (sym));
  285.       print_variable_value (sym, frame, stream);
  286.       fprintf_filtered (stream, "\n");
  287.       fflush (stream);
  288.     }
  289.     }
  290. }
  291.  
  292. /* Print on STREAM all the local variables in frame FRAME,
  293.    including all the blocks active in that frame
  294.    at its current pc.
  295.  
  296.    Returns 1 if the job was done,
  297.    or 0 if nothing was printed because we have no info
  298.    on the function running in FRAME.  */
  299.  
  300. static i